home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo SETUP is building your device driver files.....please wait......
- if not exist PCL5D.EA goto err1
- if not exist PCL5H.EA goto err1
- if not exist PCL5F.EA goto err1
- if not exist PCL5D.NEA goto err1
- ren PCL5D.NEA IBMPCL5.DRV
- if not exist PCL5H.NEA goto err1
- ren PCL5H.NEA IBMPCL5.HLP
- if not exist PCL5F.NEA goto err1
- ren PCL5F.NEA PCL5_FCF.DLL
- echo.
- echo.
- echo When SETUP completes, follow the installation instructions in Part III
- echo of README.1ST, or you will experience printing problems!
- echo.
- echo.
- eautil IBMPCL5.DRV PCL5D.EA /j
- if errorlevel 4 goto err2
- if errorlevel 1 goto err1
- eautil IBMPCL5.HLP PCL5H.EA /j
- if errorlevel 4 goto err2
- if errorlevel 1 goto err1
- eautil PCL5_FCF.DLL PCL5F.EA /j
- if errorlevel 4 goto err2
- if errorlevel 1 goto err1
- echo.
- echo SETUP has completed successfully. You may go on to Part III of the
- echo installation instructions.
- goto getout
- :err1
- echo Error! Setup has failed to complete. A file is missing.
- goto getout
- :err2
- echo Error! Setup has failed to complete. An error occurred.
- :getout